home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / Mesa-1.2.1 / src-aux / Makefile < prev    next >
Encoding:
Makefile  |  1995-07-05  |  2.2 KB  |  100 lines

  1. # Makefile for aux toolkit
  2.  
  3. # Mesa 3-D graphics library
  4. # Version:  1.2.1
  5. # Copyright (C) 1995  Brian Paul  (brianp@ssec.wisc.edu)
  6. #
  7. # This library is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU Library General Public
  9. # License as published by the Free Software Foundation; either
  10. # version 2 of the License, or (at your option) any later version.
  11. #
  12. # This library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. # Library General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Library General Public
  18. # License along with this library; if not, write to the Free
  19. # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.  
  22. # $Id: Makefile,v 1.8 1995/06/21 15:58:16 brianp Exp $
  23.  
  24. # $Log: Makefile,v $
  25. # Revision 1.8  1995/06/21  15:58:16  brianp
  26. # renamed aux.o as glaux.o for MS-DOS
  27. # added IRIX 5 DSO and Linux ELF shared library targets
  28. # Release 1.2.1
  29. #
  30. # Revision 1.7  1995/05/22  17:01:24  brianp
  31. # Release 1.2
  32. #
  33. # Revision 1.6  1995/05/15  16:15:46  brianp
  34. # clean up and reorganize
  35. #
  36. # Revision 1.5  1995/03/30  22:29:49  brianp
  37. # removed TK objects from AUX archive
  38. #
  39. # Revision 1.4  1995/03/04  19:37:49  brianp
  40. # changed for Make-config
  41. #
  42. # Revision 1.3  1995/03/01  21:07:51  brianp
  43. # replaced 'make' with $(MAKE)
  44. #
  45. # Revision 1.2  1995/02/24  16:15:08  brianp
  46. # added netbsd target
  47. #
  48. # Revision 1.1  1995/02/24  16:14:02  brianp
  49. # Initial revision
  50. #
  51.  
  52.  
  53. ##### MACROS #####
  54.  
  55. VPATH = RCS
  56.  
  57. INCDIR = ../include
  58. LIBDIR = ../lib
  59.  
  60. SOURCES = glaux.c font.c image.c shapes.c teapot.c vect3d.c xform.c
  61. OBJECTS = $(SOURCES:.c=.o)
  62.  
  63.  
  64.  
  65. ##### RULES #####
  66.  
  67. $(OBJECTS): $(SOURCES)
  68.  
  69. .c.o:
  70.     $(CC) -c $(CFLAGS) $<
  71.  
  72.  
  73.  
  74. ##### TARGETS #####
  75.  
  76. default:
  77.     @echo "Specify a target configuration"
  78.  
  79. clean:
  80.     -rm *.o *~
  81.  
  82. targets: $(LIBDIR)/$(AUX_LIB)
  83.  
  84. $(LIBDIR)/libMesaaux.a: $(OBJECTS)
  85.     ar $(ARFLAGS) $@ $(OBJECTS)
  86.     $(RANLIB) $@
  87.  
  88. # Make SGI IRIX 5.x DSO:
  89. $(LIBDIR)/libMesaaux.so: $(OBJECTS)
  90.     ld -shared -all $(OBJECTS) -o $@
  91.  
  92. # Make Linux ELF shared library:
  93. $(LIBDIR)/libMesaaux.so.1: $(OBJECTS)
  94.     gcc -shared $(OBJECTS) -o $@
  95.  
  96.  
  97. include ../Make-config
  98.  
  99.  
  100.